home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / ghostscript / src / save.h < prev    next >
C/C++ Source or Header  |  1994-08-01  |  2KB  |  40 lines

  1. /* Copyright (C) 1991, 1992 Aladdin Enterprises.  All rights reserved.
  2.  
  3. This file is part of Ghostscript.
  4.  
  5. Ghostscript is distributed in the hope that it will be useful, but
  6. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  7. to anyone for the consequences of using it or for whether it serves any
  8. particular purpose or works at all, unless he says so in writing.  Refer
  9. to the Ghostscript General Public License for full details.
  10.  
  11. Everyone is granted permission to copy, modify and redistribute
  12. Ghostscript, but only under the conditions described in the Ghostscript
  13. General Public License.  A copy of this license is supposed to have been
  14. given to you along with Ghostscript so you can know your rights and
  15. responsibilities.  It should be in a file named COPYING.  Among other
  16. things, the copyright notice and this notice must be preserved on all
  17. copies.  */
  18.  
  19. /* save.h */
  20. /* Interface to Ghostscript save/restore machinery */
  21.  
  22. /* Store checking / change saving */
  23. extern int alloc_save_new_mask;        /* l_new if in save, 0 if not */
  24. extern int alloc_save_test_mask;    /* 0 if in save, -1 if not */
  25. int alloc_array(P4(ref *paref, uint attrs, uint num_refs, const char *client_name));
  26. void alloc_free_array(P2(ref *paref, const char *client_name));
  27. int alloc_save_change(P2(ref *ptr, const char *client_name));
  28.  
  29. /* Save and restore state */
  30. typedef struct alloc_save_s alloc_save;
  31. typedef struct alloc_change_s alloc_change;
  32. alloc_save *alloc_save_state(P0());    /* 0 if can't alloc save block */
  33. int alloc_save_level(P0());
  34. int alloc_is_since_save(P2(const char *, const alloc_save *));
  35. int alloc_name_is_since_save(P2(const ref *, const alloc_save *));
  36. int alloc_restore_state_check(P1(const alloc_save *));  /* 0 if OK, <0 if not */
  37. void alloc_restore_state(P1(alloc_save *));
  38. /* Release all memory -- like doing a restore "past the bottom". */
  39. void alloc_restore_all(P0());
  40.